home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / Db_Get.c < prev    next >
C/C++ Source or Header  |  1989-01-13  |  4KB  |  138 lines

  1. /* 
  2.  * Db_Get.c --
  3.  *
  4.  *    Source code for the Db_Get procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Get.c,v 1.5 89/01/13 11:44:23 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include <db.h>
  22. #include "dbInt.h"
  23.  
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Db_Get --
  29.  *
  30.  *    Obtain a random entry, or the next entry in order, given the handle
  31.  *    for a database.
  32.  *
  33.  * Results:
  34.  *    -1 indicates an error, in which case errno indicates more details.
  35.  *    0 indicates success.
  36.  *
  37.  * Side effects:
  38.  *    The position in the file is updated.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. int
  44. Db_Get(handlePtr, bufPtr, index)
  45.     Db_Handle *handlePtr;    /* handle to the database */
  46.     char *bufPtr;        /* place to store record */
  47.     int index;             /* -1 to indicate next in order, else which
  48.                  * record to obtain */
  49. {
  50.     register int streamID;
  51.     int bufSize;
  52.     int offset;
  53.     int bytesRead;
  54.     int status;
  55.     int structSize = handlePtr->structSize;
  56.     char *buffer;
  57.     int doSeek;
  58.     register int firstRec;
  59.  
  60.     if (index == -1) {
  61.     index = handlePtr->index;
  62.     doSeek = 0;
  63.     } else if (index != handlePtr->index) {
  64.     doSeek = 1;
  65.     }
  66.     if (handlePtr->numBuf > 0) {
  67.     firstRec = handlePtr->firstRec;
  68.     if ((firstRec >= 0) && (index >= firstRec) &&
  69.         (index < firstRec + handlePtr->numBuf)) {
  70.         bcopy(handlePtr->buffer + (index - firstRec) *
  71.               structSize,
  72.           bufPtr, structSize);
  73.         handlePtr->index = index + 1;
  74.         return(0);
  75.     }
  76.     buffer = handlePtr->buffer;
  77.     bufSize = handlePtr->numBuf * structSize;
  78.     } else {
  79.     buffer = bufPtr;
  80.     bufSize = structSize;
  81.     }
  82.     
  83.     streamID = handlePtr->streamID;
  84.     if (handlePtr->lockWhen == DB_LOCK_ACCESS || 
  85.     handlePtr->lockWhen == DB_LOCK_READ_MOD_WRITE) {
  86.     status = DbLockDesc(handlePtr);
  87.     if (status == -1) {
  88.         return(status);
  89.     }
  90.     }
  91.     if (doSeek) {
  92.     offset = index * structSize;
  93.     status = lseek(streamID, (long) offset, L_SET);
  94.     if (status == -1) {
  95.         return(status);
  96.     }
  97.     }
  98.     bytesRead = read(streamID, buffer, bufSize);
  99.     if (bytesRead == -1) {
  100.     status = -1;
  101.     } else if (bytesRead == 0) {
  102.     /*
  103.      * end of file.
  104.      */
  105.     status = -1;
  106.     errno = 0;
  107.     } else if (bytesRead % structSize != 0) {
  108. #ifndef CLEAN
  109.     syslog(LOG_ERR, "Db_Get: file %s is not a multiple of %d bytes",
  110.            handlePtr->fileName, structSize);
  111. #endif /* CLEAN */
  112.     status = -1;
  113.     errno = EACCES;
  114.     } else {
  115.     status = 0;
  116.     if (handlePtr->numBuf > 0) {
  117.         handlePtr->firstRec = index;
  118.         handlePtr->numBuf = bytesRead / structSize;
  119.         bcopy(handlePtr->buffer, bufPtr, structSize);
  120.     }
  121.         
  122.     }
  123.     
  124.     handlePtr->index = index + 1;
  125.  
  126.     /*
  127.      * Try to unlock the file if we locked it before (and it's not a
  128.      * read-modify-write) , but ignore any
  129.      * errors from the unlock.  It's possible to get an RPC timeout doing
  130.      * the lock but keep going, then get an error because the lock was
  131.      * never performed.
  132.      */
  133.     if (handlePtr->lockWhen == DB_LOCK_ACCESS) {
  134.     (void) flock(streamID, handlePtr->lockType | LOCK_UN);
  135.     }
  136.     return(status);
  137. }
  138.